@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap");

body {
  font-family: "Outfit", sans-serif;
  background: #f9f9f9;
  /* padding: 2rem; */
  /* margin: 0; */
}

.justified-text {
  text-align: justify;
  font-size: 18px;
  color: #420202a4;
}

.reflection-heading {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
}

.original-h1 {
  font-size: 48px;
  margin: 0;
  position: relative;
  z-index: 2;
}

.shadow-h1 {
  font-size: 48px;
  margin: 0;
  transform: scaleY(-1) skewX(-15deg);
  opacity: 0.3;
  color: #000;
  filter: blur(1px);
  margin-top: -10px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0)
  );
}

/* for 1st product */
.description-card h2 {
  text-align: center;
  margin-top: 60px;
}

/* .description-card h4 {
  text-align: center;
  text-transform: uppercase;
} */

.description-card p {
  /* text-align: center; */
  margin-top: 10px;
}

.description-card:hover {
  box-shadow: 0px 14px 56px -11px #18a3ff;
}

/* for 2nd products */
.description-card-p2 h2 {
  text-align: center;
  margin-top: 60px;
}

/* .description-card-p2 h4 {
  text-align: center;
  text-transform: uppercase;
} */

.description-card-p2 p {
  /* text-align: center; */
  margin-top: 10px;
}

.description-card-p2:hover {
  box-shadow: 0px 14px 56px -11px #18a3ff;
}

/* for 3rd product */
.description-card-p3 h2 {
  text-align: center;
  margin-top: 60px;
}

/* .description-card-p3 h4 {
  text-align: center;
  text-transform: uppercase;
} */

.description-card-p3 p {
  /* text-align: center; */
  margin-top: 10px;
}

.description-card-p3:hover {
  box-shadow: 0px 14px 56px -11px #18a3ff;
}

/* Grid Layout */
.grid-container {
  display: grid;
  grid-template-columns: auto 600px;
  gap: 150px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Loader Styles */
.loader-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
}

.loader {
  --size: 250px;
  --duration: 2s;
  --background: linear-gradient(
    0deg,
    rgba(50, 50, 50, 0.2),
    rgba(100, 100, 100, 0.2)
  );
  height: var(--size);
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader .box {
  position: absolute;
  background: var(--background);
  border-radius: 50%;
  border-top: 1px solid rgb(83, 83, 83);
  animation: ripple var(--duration) infinite ease-in-out;
  pointer-events: none;
}
.loader .box:nth-child(1) {
  inset: 40%;
  animation-delay: 0s;
  z-index: 1;
}
.loader .box:nth-child(2) {
  inset: 30%;
  animation-delay: 0.2s;
  z-index: 1;
}
.loader .box:nth-child(3) {
  inset: 20%;
  animation-delay: 0.4s;
  z-index: 1;
}
.loader .box:nth-child(4) {
  inset: 10%;
  animation-delay: 0.6s;
  z-index: 1;
}
.loader .box:nth-child(5) {
  inset: 0%;
  animation-delay: 0.8s;
  z-index: 1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.center-img {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.center-img img {
  width: 150px;
  height: auto;
  border-radius: 10%;
}

/* Description Card */
.description-card {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 390px;
}
.description-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.description-card p {
  /* font-size: 16px; */
  line-height: 1.5;
}

/* Variant Tabs */
.variant-tabs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.tab {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border: 2px solid transparent;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
}

.variant_img {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.variant_span {
  font-size: 10px;
}

/* Specific Colors */
.tab:nth-child(1) {
  background-color: rgba(92, 92, 92, 0.1);
  border-color: rgb(92, 92, 92);
}
.tab:nth-child(2) {
  background-color: rgba(0, 110, 255, 0.1);
  border-color: rgb(0, 110, 255);
}
.tab:nth-child(3) {
  background-color: rgba(255, 255, 0, 0.1);
  border-color: yellow;
}
.tab:nth-child(4) {
  background-color: rgba(7, 100, 7, 0.1);
  border-color: rgb(7, 100, 7);
}

.tab:nth-child(5) {
  background-color: rgba(7, 100, 7, 0.1);
  border-color: rgb(7, 100, 7);
}

.tab:nth-child(6) {
  background-color: rgba(7, 100, 7, 0.1);
  border-color: rgb(7, 100, 7);
}

/* Active Tab Highlight */
.tab img {
  width: 12px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.tab.active {
  border-color: #000000; /* Blue */
  background-color: #e9f2ff;
  font-weight: bold;
}

.product-section {
  margin-bottom: 80px;
  padding: 40px;
  background: #f4f4f4;
  border-radius: 16px;
}

/************************************ product 2 ******************************/
/* Product 2 Grid Layout */
.grid-container-p2 {
  display: grid;
  grid-template-columns: 600px auto;
  gap: 150px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Product 2 Description Card */
.description-card-p2 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 300px;
}

.description-card-p2 h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.description-card-p2 p {
  /* font-size: 16px; */
  line-height: 1.5;
}

/* Product 2 Loader */
.loader-wrapper-p2 {
  position: relative;
  width: 250px;
  height: 250px;
}

.center-img2 {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.center-img2 img {
  width: 150px;
  height: auto;
  border-radius: 10%;
}

/********************************************* product 3 *******************************************/
/* Product 3 Grid Layout */
.grid-container-p3 {
  display: grid;
  grid-template-columns: auto 600px;
  gap: 150px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Product 3 Description Card */
.description-card-p3 {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  width: 600px;
  height: 300px;
}

.description-card-p3 h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.description-card-p3 p {
  /* font-size: 16px; */
  line-height: 1.5;
}

/* Product 3 Loader Wrapper */
.loader-wrapper-p3 {
  position: relative;
  width: 250px;
  height: 250px;
}

